home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / gems / g_gemsi.lha / GraphicsGems / Sturm / Makefile < prev    next >
Encoding:
Makefile  |  1992-04-10  |  211 b   |  13 lines

  1. #
  2. # Makefile
  3. #
  4. #    command file for make to compile the solver.
  5.  
  6. solve: main.o sturm.o util.o
  7.     cc -o solve main.o sturm.o util.o -lm
  8.  
  9. clean:
  10.     /bin/rm -f main.o sturm.o util.o solve
  11.  
  12. main.o sturm.o util.o: solve.h
  13.